Welcome![Sign In][Sign Up]
Location:
Search - document container

Search list

[ActiveX/DCOM/ATLatl_activedoc.rar

Description: This sample demonstrates how to implement an ActiveX Document Server. The program demonstrates the following: How to implement the interfaces IOleDocument and IOleDocumentView How to perform menu merging with the container How to implement a toolbar in your object How to override the IPersistStreamInit methods Load and Save to perform custom saving and loading How to use CDialogImpl to implement an About dialog box. How to subclass the Rich Text Edit Control
Platform: | Size: 39149 | Author: | Hits:

[DocumentsWebBrowser的8个方法和13个属性

Description: WebBrowser的8个方法和13个属性,以及它们的功能: 方法 说明  GoBack 相当于IE的“后退”按钮,使你在当前历史列表中后退一项  GoForward 相当于IE的“前进”按钮,使你在当前历史列表中前进一项  GoHome 相当于IE的“主页”按钮,连接用户默认的主页  GoSearch 相当于IE的“搜索”按钮,连接用户默认的搜索页面  Navigate 连接到指定的URL  Refresh 刷新当前页面  Refresh2 同上,只是可以指定刷新级别,所指定的刷新级别的值来自RefreshConstants枚举表, 该表定义在ExDisp.h中,可以指定的不同值如下: REFRESH_NORMAL 执行简单的刷新,不将HTTP pragma: no-cache头发送给服务器 REFRESH_IFEXPIRED 只有在网页过期后才进行简单的刷新 REFRESH_CONTINUE 仅作内部使用。在MSDN里写着DO NOT USE! 请勿使用 REFRESH_COMPLETELY 将包含pragma: no-cache头的请求发送到服务器  Stop 相当于IE的“停止”按钮,停止当前页面及其内容的载入 属性 说明  Application 如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch)。如果在宿主对象中自动化对象无效,这个程序将返回WebBrowser 控件的自动化对象  Parent 返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口  Container 返回WebBrowser控件容器的自动化对象。通常该值与Parent属性返回的值相同  Document 为活动的文档返回自动化对象。如果HTML当前正被显示在WebBrowser中,则 Document属性提供对DHTML Object Model的访问途径  TopLevelContainer 返回一个Boolean值,表明IE是否是WebBrowser控件顶层容器,是就返回true  Type 返回已被WebBrowser控件加载的对象的类型。例如:如果加载.doc文件,就会返 回Microsoft Word Document  Left 返回或设置WebBrowser控件窗口的内部左边与容器窗口左边的距离  Top 返回或设置WebBrowser控件窗口的内部左边与容器窗口顶边的距离  Width 返回或设置WebBrowser窗口的宽度,以像素为单位  Height 返回或设置WebBrowser窗口的高度,以像素为单位  LocationName 返回一个字符串,该字符串包含着WebBrowser当前显示的资源的名称,如果资源 是网页就是网页的标题;如果是文件或文件夹,就是文件或文件夹的名称  LocationURL 返回WebBrowser当前正在显示的资源的URL  Busy 返回一个Boolean值,说明WebBrowser当前是否正在加载URL,如果返回true 就可以使用stop方法来撤销正在执行的访问操作 如何利用 WebBrowser 控件,显示 .GIF 动画? 要有一定的网页知识(HTML、JavaScript、CSS) 注意细节: 没有"滚动条"和"鼠标右键弹出的 IE 上下文菜单",".HTM 源文件" ... 我写了一个,效果还真不错! ''Objects: Form1、Command1、CommonDialog1、WebBrowser1 Option Explicit Private Sub Command1_Click() CommonDialog1.ShowOpen If VBA.Len(VBA.Trim(CommonDialog1.FileN欢迎光临学网,点击这里查看更多文章教程 [1] [2] [3] [4] [5] [6] [7] [8] ame)) > 0 Then Dim p As stdole.StdPicture Dim sPath As String sPath = VBA.Trim(VBA.Trim(CommonDialog1.FileName)) Set p = VB.LoadPicture(sPath) WebBrowser1.Width = p.Width * 16 / 26 WebBrowser1.Height = p.Height * 16 / 26 '' WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " " WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" End If End Sub Private Sub Form_Load() Command1.Caption = "&Open" WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.Close End Sub
Platform: | Size: 3992 | Author: weidonglingsir@163.com | Hits:

[ActiveX/DCOM/ATLAXDocContainer

Description: 很好的MDI Container例子,如果想使用Excel等文档,可以借鉴此例子 -Very good MDI Container example, if you want to use excel document, you can use it for reference
Platform: | Size: 103424 | Author: 站长 | Hits:

[ActiveX/DCOM/ATLatl_activedoc

Description: This sample demonstrates how to implement an ActiveX Document Server. The program demonstrates the following: How to implement the interfaces IOleDocument and IOleDocumentView How to perform menu merging with the container How to implement a toolbar in your object How to override the IPersistStreamInit methods Load and Save to perform custom saving and loading How to use CDialogImpl to implement an About dialog box. How to subclass the Rich Text Edit Control
Platform: | Size: 38912 | Author: | Hits:

[ActiveX/DCOM/ATLActiveX文档容器

Description: ActiveX文档容器-ActiveX document container
Platform: | Size: 112640 | Author: 孙长江 | Hits:

[DirextXActiveXcontainerone

Description: ActiveX文档容器-ActiveX document container
Platform: | Size: 105472 | Author: yulingli | Hits:

[EditorWebBrowserWord

Description: 使用WebBrowser控件作为容器打开Word文档 === === === === 这个源代码演示了使用WebBrowser控件作为容器打开Word文档的操作。需要在工程中添加的引用主要为Office支持库,本示例是以在OFFICEXP 2003的环境下打开。所需文件如下: Microsoft Word 11.0 Object Library (MSWord.olb) Microsoft Office 11.0 Object Library (MSO.dll) Microsoft Dialog Automation Objects (DlgObjs.dll) 具体一些功能,请查看源码示例。-Use WebBrowser control to open Word document as a container === === === === === === === The source code to demonstrate the use of WebBrowser control to open Word document as a container operation. Need to add reference works for the Office in support of the main library, this example is OFFICEXP 2003 in the open environment. Documents required are as follows: Microsoft Word 11.0 Object Library (MSWord.olb) Microsoft Office 11.0 Object Library (MSO.dll) Microsoft Dialog Automation Objects (DlgObjs.dll) specific features, please view the source code examples.
Platform: | Size: 20480 | Author: qi | Hits:

[JSP/JavaLucasReport

Description: sample目录下是例子程序。 1.分组汇总例子 TestGroupReport.java 2.交叉报表例子 TestCrossReport.java 需要使用crossTabSample.xml文件。 请修改程序中引用crossTabSample.xml文件的路径。 3.select.jsp和ShowReportServlet.java是将各种格式报表直接输出到浏览器的例子。 将jsp放到web容器(如tomcat)的根目录下,将ShowReportServlet.java 放到适当的目录下编译。 ------------------------------------------------------------------- 开发指南: tutorial.htm src目录下为源文件。 -sample directory is the example of the procedure. 1. Packet summary examples TestGroupReport.java2. Crossover example TestCrossReport.java statements requires the use crossTabSample.xml document. Please modify the program crossTabSample.xml documents cited in the path. 3.select.jsp and ShowReportServlet.java statements for a variety of formats is to direct the output to the browser example. Jsp on the web container (such as tomcat) root directory, will be put ShowReportServlet.java appropriate compiler directory.------------------------------------------------------------------- Development Guide: tutorial.htmsrc directory for the source file.
Platform: | Size: 4833280 | Author: | Hits:

[ActiveX/DCOM/ATLSetup_Ori

Description: EDraw Office Viewer Component contains a standard ActiveX control that acts a n ActiveX document container for hosting Office documents (including Microsoft Word, Microsoft Excel, Microsoft PowerPoint, Microsoft Project, and Microsoft Visio documents) in a custom form or Web page. The control is lightweight and flexible, and gives developers new possibilities for using Office in a custom solution. The control is designed to handle specific issues that make using ActiveX documents from a non-top-level host window difficult, and serves as a starting place for constructing your own embedded object file viewer or editor as an ActiveX control. 内含注册码-EDraw Office Viewer Component contains a standard ActiveX control that acts an ActiveX document container for hosting Office documents (including Microsoft Word, Microsoft Excel, Microsoft PowerPoint, Microsoft Project, and Microsoft Visio documents) in a custom form or Web page. The control is lightweight and flexible, and gives developers new possibilities for using Office in a custom solution.The control is designed to handle specific issues that make using ActiveX documents from a non-top-level host window difficult, and serves as a starting place for constructing your own embedded object file viewer or editor as an ActiveX control. intron License
Platform: | Size: 1392640 | Author: Ferret | Hits:

[ActiveX/DCOM/ATLClock

Description: ActiveX控件应用实例——Clock和MyATLWin 代码使用说明 ============================================================== CLock文件夹为Clock控件项目代码; MyATLWin文件夹为包容器代码; 须重新编译Clock项目文件或注册Clock.ocx控件,包容器才能正常显示。-ActiveX Controls Application- Clock and use MyATLWin code ====================================== ======================== CLock folder item code for the Clock Control MyATLWin container folder for the package code Clock to re-compile the project document or Register Clock . ocx controls, including the container can be displayed properly.
Platform: | Size: 6351872 | Author: 高强 | Hits:

[Windows Develop22222222

Description: 介绍了怎么创建一个多文档的,AxtiveX文档容器。并且使用help of scripts-This article explains how to create an MDI ActiveX document container and drive it with help of scripts
Platform: | Size: 105472 | Author: jenny | Hits:

[ActiveX/DCOM/ATLqux

Description: 本程序可以实现曲线的动态显示,实现将控件PanelXY.ocx注册,注册方法为在VS2005的“工具”、“Active控件测试容器”、“文件”。然后就可以在VS2005的Active控件中看到PanelXY控件,可以加入到用户程序的窗体中。本程序给出了例程。-This procedure can be achieved dynamic curves show that the realization of the control PanelXY.ocx registration, registration in the VS2005 " Tools" , " Active Control Test Container" , " document." VS2005 and then you can see the Active Control PanelXY control procedures can be added to the user in the form. This procedure gives the routine.
Platform: | Size: 102400 | Author: | Hits:

[Graph DrawingGraphjdxsh

Description: 本程序可以实现曲线的静态、动态显示,实现将控件PanelXY.ocx注册,注册方法为在VS2005的“工具”、“Active控件测试容器”、“文件”。然后就可以在VS2005的Active控件中看到PanelXY控件,可以加入到用户程序的窗体中。本程序给出了例程。-This procedure can be achieved curve static, dynamic display, PanelXY.ocx controls to achieve the registration, registration in the VS2005 " Tools" , " Active Control Test Container" , " document." VS2005 and then you can see the Active Control PanelXY control procedures can be added to the user in the form. This procedure gives the routine.
Platform: | Size: 104448 | Author: | Hits:

[xml-soap-webservicedbxml-2.5.13.tar

Description: Oracle Berkeley DB XML 是一个可嵌入的开源 XML 数据库,可基于 XQuery 访问存储在容器中的文档,并对其内容进行索引。Oracle Berkeley DB XML 构建于 Oracle Berkeley DB 之上,并继承了其丰富的特性和属性。与 Oracle Berkeley DB 一样,它通过应用程序运行,无需人为管理。Oracle Berkeley DB XML 在 Oracle Berkeley DB 之上新增了文档分析器、XML 索引器以及 XQuery 引擎,实现了最快速、最高效的数据检索。 -Oracle Berkeley DB XML is an open-source embeddable XML database and XQuery-based access to the document stored in the container and its contents to the index. Oracle Berkeley DB XML is built on top of Oracle Berkeley DB and inherits its rich features and attributes. And Oracle Berkeley DB, as it runs through the application process, without human management. Oracle Berkeley DB XML in Oracle Berkeley DB on top of the document parser added, XML indexer and XQuery engine, to achieve the fastest, most efficient data retrieval.
Platform: | Size: 42644480 | Author: coldwater | Hits:

[ActiveX/DCOM/ATLVC_Programming_ActiveX_document_container_classic_

Description: VC编程开发ActiveX文档容器经典代码VC Programming ActiveX document container classic code-VC Programming ActiveX document container classic code
Platform: | Size: 105472 | Author: auii | Hits:

[AlgorithmMatrix_multiply_convert

Description: 利用C++中的VECTOR容器编写的矩阵乘法,不限矩阵大小,可以从文件中导入矩阵,也可将得到的矩阵从文件中输出-VECTOR container use C++ written in matrix multiplication, matrix size limitation can be imported from a file matrix, the matrix can also be obtained from the document output
Platform: | Size: 3846144 | Author: walter | Hits:

[File FormatSVG

Description: SVG中图形元素(graphics element)是可以用来在目标画布上画出图形的元素,包括定义的标准形状,特别是矩形、圆形、椭圆形、直线、折线和多边形等。文章介绍了SVG元素的代码及其含意。SVG元素分为图形元素、容器元素、图形引用元素、文本、SVG文档片断内容。-SVG graphic elements (graphics element) can be used to draw the graphical elements of the canvas on the target, including the standard definition of the shape, in particular rectangular, circular, oval, lines, polylines and polygons. This paper introduces the code and its implications SVG elements. SVG elements into graphic elements, container elements, graphics referenced elements, text, SVG document fragment content.
Platform: | Size: 17408 | Author: 赵旭 | Hits:

[ActiveX/DCOM/ATLActiveXDOC

Description: vc++编写的ActiveX文档容器,可供开发人员学习使用。-vc++ to write an ActiveX document container available for developers to learn to use.
Platform: | Size: 527360 | Author: judson | Hits:

[JSP/Javalaypage-v1

Description: laypage是一款多功能的js分页组件,主要应用于前端页面Ajax普通分页以及信息流加载,并且可无缝迁移至Node.js平台。laypage不依赖于任何第三方库,直接拿来用即可,它的接口继承了layui系列组件的一贯简洁,极易上手。那么,从现在开始,将分页的任务交给laypage吧! 直接使用 laypage({ cont: page1 , //容器。值支持id名、原生dom对象,jquery对象。【如该容器为】: pages: 66, //总页数 curr: 6, //当前页 jump: function(e){ //触发分页后的回调 var view = document.getElementById( view1 ) //你也可以直接使用jquery view.innerHTML = 假设这是分页内容,目前正出于第: + e.curr + 页。jump函数返回的参数e是一个object,e.curr即当前页,通过它去向服务端请求相关数据。 } }) 模块加载 var laypage = require( laypage ) laypage({ cont: id , pages: 11, … }) -Laypage is a JS page components with a multifunctional, mainly used in the front page of Ajax common paging and information flow loading, and seamless migration to Node.js platform. Laypage does not rely on any third party libraries, can be directly used, its interface inherits the layui series of assembly has always been simple, easy to use. So, now on, the paging task to laypage! The direct use Laypage ({ Cont: page1 ,// container. Value support ID name, a native DOM object, jQuery object. If the container is []: The pages:// 66, the total number of pages Curr: 6,// the current page Jump: function (E) {//trigger page after the callback Var view = document.getElementById ( view1 ) // you can also use the jquery View.innerHTML = assuming this is the page content, is currently out of the + e.curr+ page. Parameters returned by the jump function E is a object, e.curr is the current page, related data requests through it to the ser
Platform: | Size: 4096 | Author: 哈哈 | Hits:

[JSP/Javalaypage_v1.2

Description: laypage是一款多功能的js分页组件,主要应用于前端页面Ajax普通分页以及信息流加载,并且可无缝迁移至Node.js平台。laypage不依赖于任何第三方库,直接拿来用即可,它的接口继承了layui系列组件的一贯简洁,极易上手。那么,从现在开始,将分页的任务交给laypage吧! 直接使用 laypage({ cont: page1 , //容器。值支持id名、原生dom对象,jquery对象。【如该容器为】: pages: 66, //总页数 curr: 6, //当前页 jump: function(e){ //触发分页后的回调 var view = document.getElementById( view1 ) //你也可以直接使用jquery view.innerHTML = 假设这是分页内容,目前正出于第: + e.curr + 页。jump函数返回的参数e是一个object,e.curr即当前页,通过它去向服务端请求相关数据。 } }) 模块加载 var laypage = require( laypage ) laypage({ cont: id , pages: 11, … })-Laypage is a multi- functional JS paging module, mainly used in the front page of the Ajax common paging and information flow, and can be seamless migration to Node.js platform. Laypage does not rely on any third party libraries, directly used to use, it is the interface of the layui series inherited the simple, easy to use. So, now on, the page will be handed over to laypage! Direct use Laypage ({ Cont: page1 ,// container. Values support ID name, native DOM object, jQuery object. If the container is: Pages:/66, the total number of pages 6// curr:, the current page Jump: function (E) {//trigger page after the callback Var view = document.getElementById ( view1 ) // you can also use the jquery View.innerHTML = if this is the page content, is currently out of the page: + e.curr+ . Jump function returns the argument e is a e.curr, object is the current page, through which to request the server to request the relevant data. } }) Module loading Laypage var = require ( layp
Platform: | Size: 7168 | Author: xiaofei | Hits:
« 12 »

CodeBus www.codebus.net